Trac is being migrated to new services! Issues can be found in our new
YouTrack instance and WIKI pages can be found on our
website.
- Timestamp:
-
Apr 13, 2007, 9:48:07 PM (17 years ago)
- Author:
-
wabz
- Comment:
-
add some tips regarding running in screen
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v14
|
v15
|
|
46 | 46 | == Conversations == |
47 | 47 | === In chats, can I see the list of users in the chatroom? === |
48 | | Yes. Use the {{{/users}}} command. (after 2.0.0) |
| 48 | Yes. Use the {{{/users}}} command. (after 2.0.0. Until then, press tab and all the users will be presented in the tab-completion dropdown) |
49 | 49 | |
50 | 50 | === In a conversation with a contact, can I select which buddy the message is sent to? === |
… |
… |
|
54 | 54 | === Is there a pounce/debug/file-transfer/preference/plugins/status window? === |
55 | 55 | Yes! Press {{{alt-a}}} to bring out the actions menu. Select the window you want to see. |
| 56 | |
| 57 | === How do I get the mouse working in screen? === |
| 58 | You can do a bunch of things with the mouse in finch (after putting "mouse = 1" in ~/.gntrc), including selecting text over multiple lines in conversation windows, which is hard to do with the mouse selection in your terminal - so having the mouse enabled in finch can be advantageous. For at least a few people, screen is missing the kmous capability entry in its terminfo. Here's how to add it: |
| 59 | |
| 60 | From the terminal in which you run screen, and while not in screen: |
| 61 | {{{ |
| 62 | #!sh |
| 63 | infocmp | sed -n 's/.*\(kmous=[^,]\+\).*/\1/p' |
| 64 | }}} |
| 65 | (from what I've read, for this to work in ncurses, the value "must" be "\E[M"?) |
| 66 | Within screen: |
| 67 | {{{ |
| 68 | #!sh |
| 69 | infocmp > tmp |
| 70 | }}} |
| 71 | Open tmp and add the kmous entry from above, save and close and do: |
| 72 | {{{ |
| 73 | #!sh |
| 74 | tic tmp |
| 75 | }}} |
| 76 | When the mouse is enabled, hold shift to use your terminal's mouse selecting. |
| 77 | |
| 78 | === In screen, when I press esc, there is a huge delay, how can this be reduced? === |
| 79 | Finch adds its own small delay after pressing esc, to allow pressing esc then <whatever> in quick succession for alt-X shortcuts where your alt key may be missing. Screen also does this, so to avoid having both applications add the delay: |
| 80 | maptimeout 0 |
| 81 | into ~/.screenrc |
| 82 | Alternatively, type C-a :maptimeout 0 while in screen. |
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!